home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d12
/
cbibcode.arc
/
TEXTCOLR.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1991-08-05
|
230 b
|
14 lines
/* p896.c --- bible */
#include <conio.h>
main()
{
int i, numcolors = 16;
textbackground(BLACK);
for(i = 0; i < numcolors; i++)
{
textcolor(i);
gotoxy(1, i + 1);
cprintf("Text color = %d", i);
}
getch();
}